home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 4 / The Arsenal Files 4 (Arsenal Computer).ISO / casm / au116-as.exe / UTIL / MAKEFILE < prev    next >
Text File  |  1994-12-11  |  1KB  |  34 lines

  1. # BCC makefile
  2.  
  3. INCLUDE_PATH = i:\borlandc\include
  4. CC = bcc -ml -c -O1 -d -Z -H -Y -v -I$(INCLUDE_PATH)
  5.  
  6. # bcc = Borland's C++ command line compiler
  7. # -ml = Large Model
  8. # -c  = Compile only
  9. # -O1 = Smallest size
  10. # -d  = Collapse reused literal strings
  11. # -Z  - Suppress register reloads
  12. # -H  = Use precompiled headers
  13. # -Y  = Use Overlays
  14. # -v  = Include symbolic information in the .objs
  15. # -I  = Include file path
  16.  
  17. LIBRARIAN = tlib
  18.  
  19. .cpp.obj:
  20.    $(CC) {$*.cpp }
  21.  
  22. util.lib: act_log.obj  alloc.obj    arc_file.obj atfile.obj   backsl.obj    \
  23.           bbs_fill.obj bfname.obj    cd.obj         cfg_hand.obj cleanpth.obj    \
  24.           continue.obj crc16.obj    crc32.obj     date.obj      dbad.obj        \
  25.           fileline.obj findext.obj    fix_path.obj fit_mask.obj flist.obj     \
  26.           get_ns.obj   getfile.obj    getrec.obj     getvalue.obj gformat.obj    \
  27.           handread.obj hmstostr.obj isbinary.obj is_dosnm.obj key.obj        \
  28.           list.obj       log.obj        message.obj  oktoproc.obj old.obj        \
  29.           parse.obj    percent.obj    process.obj  renstric.obj splitfil.obj    \
  30.           string.obj   subst.obj    thresh.obj     verprint.obj
  31.    del util.lib
  32.    $(LIBRARIAN) util.lib @objfiles
  33.  
  34.